home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / Apple Location Manager / ALMInterfaces / LocationManager.r < prev   
Encoding:
Text File  |  1997-05-19  |  1.1 KB  |  38 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        LocationManager.r
  3.  
  4.      Contains:    LocationManager (manange preferences for different physical locations)
  5.  
  6.      Version:    System 7.6
  7.                  Package:    Location Manager SDK 1.0
  8.  
  9.      Copyright:    © 1984-1997 by Apple Computer, Inc.
  10.                  All rights reserved.
  11.  
  12.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13.                  stack.  Include the file and version information (from above)
  14.                  in the problem description and send to:
  15.                      Internet:    apple.bugs@apple.com
  16.  
  17. */
  18.  
  19. #ifndef __LOCATIONMANAGER_R__
  20. #define __LOCATIONMANAGER_R__
  21.  
  22. /*
  23. --------------------------------------------------------------------------------------
  24.  Location Manager User Module API
  25. --------------------------------------------------------------------------------------
  26. */
  27.  
  28. #define        kALMComponentType        'walk'
  29.  
  30. /* These masks apply to the "flags" field in the ComponentDescription record. */
  31.  
  32. #define        kALMMultiplePerLocation        1                        /* this module can be added more than once to a location */
  33. #define        kALMDescriptionGetsStale    2                        /* this module's settings' descriptions can change even */
  34.                                                                 /* when the setting didn't change. */
  35.  
  36. #endif /* __LOCATIONMANAGER_R__ */
  37.  
  38.